home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Libraries / usr (gcc 1.37 libs) / gen / getwd.c < prev    next >
C/C++ Source or Header  |  1993-03-20  |  96b  |  7 lines

  1. #include <sys/param.h>
  2.  
  3. char *getwd(char *path)
  4.     {
  5.     return (char *)getcwd(path, MAXPATHLEN);
  6.     }
  7.